home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / pc_board / dlock1a.zip / DOORLOCK.DOC next >
Text File  |  1993-02-28  |  4KB  |  101 lines

  1.                                    DoorLock
  2.             PCBoard Utility To Lock Certain Users From Using a Door
  3.                               Written By Ray Novino
  4.                            RunWay BBS (215) 623-6203
  5.                                   Version 1.a
  6.  
  7.  
  8.  
  9.     INTRODUCTION:
  10.     -------------
  11.  
  12.         DoorLock is a simple utility which will prevent certain users
  13.     from accessing certain doors.  I needed something that would look
  14.     at the callers name and if found not allow the caller into the door.
  15.     The reason I created the door was that I had a request from a registered
  16.     user that he didn't want his children to access our adult conferences.
  17.     Because we use a door to grant them access, and because his security was
  18.     high enough to use the door anytime I felt the need to create DoorLock.
  19.     Because DoorLock is ran in your batch file I'm sure many of you will also
  20.     find other uses for it such as in your $$login or $$logoff batch files.
  21.     DoorLock also provides an option to display a message to the caller
  22.     telling them they have been locked out of the door.
  23.  
  24.     I looked for an existing utility to do this but everything I found was
  25.     geared towards the callers security level.
  26.  
  27.  
  28.     DISCLAIMER:
  29.     -----------
  30.  
  31.          This program is provided "AS IS".  No warranty of any kind is
  32.     expressed or implied.  YOU USE THIS PROGRAM AT YOUR OWN RISK.  I take no
  33.     responsibility for any damage caused directly or indirectly from the use or
  34.     the inability to use this program.  I will not accept responsibility for
  35.     any system damage, loss of profit or any other special, consequential or
  36.     incidental damages resulting from the use of or inability to use this
  37.     product.
  38.  
  39.          Every effort has been made to avoid error and moderately extensive
  40.     testing has been performed on this program, however, I do not warrant them
  41.     to be fit for any purpose or to be free from error and disclaim any
  42.     liability for actual or any other damage arising from the use of this
  43.     program.
  44.  
  45.  
  46.     REGISTRATION:
  47.     -------------
  48.  
  49.         DoorLock is offered FREE to all registered PCBoard Sysops.
  50.  
  51.     QUICKSTART:
  52.     -----------
  53.  
  54.     Edit DOORLOCK.LST - Each line contains a callers name who you want
  55.     locked from the door.
  56.     
  57.     Edit DOORLOCK.MSG - [OPTIONAL] - If this file is found then it will
  58.     be copied to PCBDOOR.TXT and displayed to the caller upon return to
  59.     PCBoard.  If you don't want anything displayed just delete the file.
  60.  
  61.     Edit your door batch file - DoorLock reads the PCBoard.sys file so be
  62.     sure to run it before changing out of your PCBoard directory.
  63.  
  64.                     @Echo off
  65.                     @DOORLOCK
  66.                     if errorlevel 1 goto End
  67.                     H:
  68.                     CD\DOOR
  69.                     Run Door
  70.                     Do Something
  71.                     :End
  72.  
  73.     Copy DoorLock.exe, DoorLock.lst, and DoorLock.msg to your PCBoard
  74.     Directory, directory in your path, or any other directory you like.
  75.  
  76.     SPECIAL NOTES:
  77.     --------------
  78.  
  79.     1.  Doorlock expects to find PCBoard.sys in the current directory.
  80.  
  81.     2.  DoorLock.exe and all related files can be located anywhere although
  82.         the DoorLock.lst and DoorLock.msg files must be located in the same
  83.         directory as the .EXE file.    
  84.  
  85.     3.  DoorLock returns a DOS errorlevel of 1 if the callers name is found
  86.         in the list.
  87.  
  88.  
  89.     PROBLEMS/SUGGESTIONS:
  90.     ---------------------
  91.  
  92.     I can be reached at RunWay BBS (215) 623-6203, SaltAir, or the sysop
  93.     conferences on ILink and Smartnet.
  94.  
  95.  
  96.     ACKNOWLEDGMENTS:
  97.     ---------------
  98.  
  99.     PCBoard is Copyrighted by Clark Dev
  100.  
  101.